home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_10 / 9n10017a < prev    next >
Encoding:
Text File  |  1995-11-01  |  354 b   |  15 lines

  1. /* setjmp.h standard header */ 
  2. #ifndef _SETJMP
  3. #define _SETJMP
  4. #ifndef _YVALS
  5. #include <yvals.h>
  6. #endif
  7.                 /* type definitions */
  8. typedef int jmp_buf[_NSETJMP];
  9.                 /* declarations */
  10. void longjmp(jmp_buf, int);
  11. int setjmp(jmp_buf);
  12.                 /* macro overrides */
  13. #define setjmp(env)     setjmp(env)
  14. #endif
  15.